equal reliability redundancy - определение. Что такое equal reliability redundancy
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое equal reliability redundancy - определение

FINANCIAL INCENTIVE OFFERED BY AN ORGANISATION TO ENCOURAGE EMPLOYEES TO VOLUNTARILY RESIGN
Voluntary Redundancy; Redundancy contract
Найдено результатов: 405
Reliability (computer networking)         
ABILITY OF A COMPUTER NETWORK PROTOCOL TO NOTIFY THE SENDER OF WHETHER DELIVERY OF DATA WAS SUCCESSFUL
Reliability properties; Strong reliability properties; Reliable messaging; Reliable messaging service; Reliable messaging system; Reliable communications; Assurance (computer networking); Reliable delivery
In computer networking, a reliable protocol is a communication protocol that notifies the sender whether or not the delivery of data to intended recipients was successful. Reliability is a synonym for assurance, which is the term used by the ITU and ATM Forum.
High reliability organization         
ORGANIZATIONS OPERATING COMPLEX, HIGH-HAZARD DOMAINS FOR EXTENDED PERIODS WITHOUT SERIOUS ACCIDENTS OR CATASTROPHIC FAILURES
High reliability organisation; High reliability organisations; High Reliability Organisation; High Reliability Organisations; High Reliability Organizations; High Reliability Organization; HROs
A high reliability organization (HRO) is an organization that has succeeded in avoiding catastrophes in an environment where normal accidents can be expected due to risk factors and complexity.
Reliability-centered maintenance         
A MAINTENANCE PLANNING APPROACH BASED ON RELIABILITY AND SAFETY SYSTEM ASSESSMENT
Reliability centred maintenance; Reliability Centered Maintenance; MSG-3; Reliability centered maintenance
Reliability-centered maintenance (RCM) is a concept of maintenance planning to ensure that systems continue to do what their user require in their present operating context.Introduction to Reliability Centered Maintenance (RCM) Part 1 Successful implementation of RCM will lead to increase in cost effectiveness, reliability, machine uptime, and a greater understanding of the level of risk that the organization is managing.
Redundancy in United Kingdom law         
RIGHTS OF EMPLOYEES IF THEY ARE DISMISSED FOR ECONOMIC REASONS IN UK LABOUR LAW
User:RichsLaw/Redundancy in English law; Redundancy in English law
Redundancy in United Kingdom law concerns the rights of employees if they are dismissed for economic reasons in UK labour law.
Reliability, availability and serviceability         
QUALITY OF ROBUSTNESS OF COMPUTER HARDWARE
Reliability, Availability and Serviceability; Reliability, availability and serviceability (computer hardware); Reliability, availability and serviceability (computing); Reliability, availability, and maintainability
Reliability, availability and serviceability (RAS), also known as reliability, availability, and maintainability (RAM), is a computer hardware engineering term involving reliability engineering, high availability, and serviceability design. The phrase was originally used by International Business Machines (IBM) as a term to describe the robustness of their mainframe computers..
Equal temperament         
  • Play}}
  • Approximation of 7-tet
  • Play ascending and descending}}
  • Comparison of equal temperaments from 9 to 25 (after Sethares (2005), p. 58).<ref name="Sethares" />
  • One octave of 12-tet on a monochord
  • date=2016-01-09 }}, ''Computer Music Journal'', Winter 2007, Vol. 31, No. 4, Pages 15-32.</ref>
  • Zhu Zaiyu's equal temperament pitch pipes
THE MUSICAL TUNING SYSTEM WHERE THE RATIO BETWEEN SUCCESSIVE NOTES IS CONSTANT
Equal tempered; Equal Temperament; Equal temperment; Equal division of the octave; Equal Division of the Octave; Equally tempered tone system; Equally tempered; Equal-tempered scale; Equal-tempered; Eighth-tone; Fifth-tone; 5-TET; 7-TET; 7-tet; 7 equal temperament; 5 equal temperament; Equal-tempered tuning; 36 equal temperament; Equal-temperament; Tempered scale; Equal tempered scale; Eighth tone; 29-TET; 16-TET; 46-TET; 48-TET; 16 equal temperament; Gleichschwebende Temperatur; Fifth tone; 46 equal temperament; 29 equal temperament; 27 equal temperament; 47 equal temperament; Tempérament égal; 36-tet; Seventh-tone; 5 tone equal temperament; 7 tone equal temperament; 5-tone equal temperament; 7-tone equal temperament; 27-tone equal temperament; 27 tone equal temperament
An equal temperament is a musical temperament or tuning system, which approximates just intervals by dividing an octave (or other interval) into equal steps. This means the ratio of the frequencies of any adjacent pair of notes is the same, which gives an equal perceived step size as pitch is perceived roughly as the logarithm of frequency.
cyclic redundancy check         
TYPE OF HASH FUNCTION USED TO DETECT ERRORS IN DATA STORAGE OR TRANSMISSION
Cyclic Redundancy Check; FCS-32; Cyclic redundancy code; CRC16; Crc64; Crc32 mpeg2; Crc16; Cyclic redundancy checks; CRC-24; CRC-16; CRC-8; CRC-64; Cyclical redundancy checking; CRC-CCITT; CRC-12; Crc32c; CRC32c; CRC8; Cyclic redundancy; Cyclic redundancy checksum; CRC-32C; CRC-32K; CRC check; CRC Values; Polynomial representations of cyclic redundancy checks; Polynomial CRC representations; List of CRC polynomials
<algorithm> (CRC or "cyclic redundancy code") A number derived from, and stored or transmitted with, a block of data in order to detect corruption. By recalculating the CRC and comparing it to the value originally transmitted, the receiver can detect some types of transmission errors. A CRC is more complicated than a checksum. It is calculated using division either using shifts and exclusive ORs or table lookup (modulo 256 or 65536). The CRC is "redundant" in that it adds no information. A single corrupted bit in the data will result in a one bit change in the calculated CRC but multiple corrupted bits may cancel each other out. CRCs treat blocks of input bits as coefficient-sets for polynomials. E.g., binary 10100000 implies the polynomial: 1*x^7 + 0*x^6 + 1*x^5 + 0*x^4 + 0*x^3 + 0*x^2 + 0*x^1 + 0*x^0. This is the "message polynomial". A second polynomial, with constant coefficients, is called the "generator polynomial". This is divided into the message polynomial, giving a quotient and remainder. The coefficients of the remainder form the bits of the final CRC. So, an order-33 generator polynomial is necessary to generate a 32-bit CRC. The exact bit-set used for the generator polynomial will naturally affect the CRC that is computed. Most CRC implementations seem to operate 8 bits at a time by building a table of 256 entries, representing all 256 possible 8-bit byte combinations, and determining the effect that each byte will have. CRCs are then computed using an input byte to select a 16- or 32-bit value from the table. This value is then used to update the CRC. Ethernet packets have a 32-bit CRC. Many disk formats include a CRC at some level. (1997-08-02)
cyclic redundancy code         
TYPE OF HASH FUNCTION USED TO DETECT ERRORS IN DATA STORAGE OR TRANSMISSION
Cyclic Redundancy Check; FCS-32; Cyclic redundancy code; CRC16; Crc64; Crc32 mpeg2; Crc16; Cyclic redundancy checks; CRC-24; CRC-16; CRC-8; CRC-64; Cyclical redundancy checking; CRC-CCITT; CRC-12; Crc32c; CRC32c; CRC8; Cyclic redundancy; Cyclic redundancy checksum; CRC-32C; CRC-32K; CRC check; CRC Values; Polynomial representations of cyclic redundancy checks; Polynomial CRC representations; List of CRC polynomials
Cyclic redundancy check         
TYPE OF HASH FUNCTION USED TO DETECT ERRORS IN DATA STORAGE OR TRANSMISSION
Cyclic Redundancy Check; FCS-32; Cyclic redundancy code; CRC16; Crc64; Crc32 mpeg2; Crc16; Cyclic redundancy checks; CRC-24; CRC-16; CRC-8; CRC-64; Cyclical redundancy checking; CRC-CCITT; CRC-12; Crc32c; CRC32c; CRC8; Cyclic redundancy; Cyclic redundancy checksum; CRC-32C; CRC-32K; CRC check; CRC Values; Polynomial representations of cyclic redundancy checks; Polynomial CRC representations; List of CRC polynomials
A cyclic redundancy check (CRC) is an error-detecting code commonly used in digital networks and storage devices to detect accidental changes to digital data. Blocks of data entering these systems get a short check value attached, based on the remainder of a polynomial division of their contents.
Equal channel angular extrusion         
EQUAL CHANNEL ANGULAR EXTRUSION (ECAE) IS ONE TECHNIQUE FROM THE SEVERE PLASTIC DEFORMATION GROUP, AIMED AT PRODUCING ULTRA FINE GRAINED MATERIAL.
ECAE; Equal Channel Angular Extrusion; Equal-channel angular pressing
Equal channel angular extrusion (ECAE) called also equal channel angular pressing (ECAP) is one technique from the Severe Plastic Deformation (SPD) group, aimed at producing Ultra Fine Grained (UFG) material. Developed in the Soviet Union in 1973 by Segal.

Википедия

Voluntary redundancy

Voluntary redundancy (VR) is a financial incentive offered by an organisation to encourage employees to voluntarily resign, typically in downsizing or restructuring situations. The purpose is to avoid compulsory redundancies or layoffs.